Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632708 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock

preview.gif cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock/preview.gif
76 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock/style.css
104 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=BenchNine:300,400");
*, *:after, *:before {
box-sizing: border-box;
}

html {
overflow: hidden;
font-family: 'BenchNine', sans-serif;
index.html cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock/index.html
310 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Analog Digital clock</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock/script.js
164 Views
0 Comments
(function() {


var months = ["January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
],
days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];